home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1246 / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-12-01  |  1KB  |  55 lines

  1. echo off
  2. cls
  3. if not exist bowl101.exe goto :errordrive
  4. echo The Bowl101! Install Procedure copies all program
  5. echo files onto your hard drive in a directory called
  6. echo BOWL.
  7. echo INSTALL followed by the drive specification.
  8. echo Example.....
  9. echo.
  10. echo A:    Log to the drive containing BOWL101
  11. echo.
  12. echo.
  13. echo INSTALL C:
  14. echo.
  15. echo.
  16. echo Installs Bowl101! onto drive C:
  17. echo.
  18. echo.
  19. echo *************************************************************
  20. echo Or you may change to the directory you wish to install bowl101
  21. echo and just copy the files there.
  22. echo Press Ctrl-Break if you wish to exit and start again or...
  23. echo *************************************************************
  24. if "%1"=="" goto error
  25. pause
  26. set d=c:
  27. set d=%1%
  28. :Copyall
  29. MD %d%\bowl
  30. echo -1>%d%test101.101
  31. if not exist %d%test101.101 goto :error
  32. del %d%test101.101
  33. copy *.* %d%\bowl
  34. cls 
  35. CD %d%\bowl
  36. %1
  37. echo ***************************
  38. echo *  Installation Complete  *
  39. echo ***************************
  40. goto end
  41. :errordrive
  42. echo 
  43. echo.
  44. echo.
  45. echo Please Log to drive containing Bowl101 and try again.
  46. echo.
  47. echo.
  48. goto end
  49. :error
  50. echo 
  51. echo.
  52. echo.
  53. echo Please specify drive to install Bowl101 on.
  54. :end
  55.